home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / zope_zclass.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  74 lines

  1. #
  2. # This script was written by Georges Dagousset <georges.dagousset@alert4web.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10777);
  10.  script_version ("$Revision: 1.12 $");
  11.  script_cve_id("CVE-2001-0567");
  12.  
  13.  
  14.  
  15.  name["english"] = "Zope ZClass permission mapping bug";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote web server is a version of Zope which is older than version 2.3.3.
  20.  
  21. There is a security issue in all releases prior to version 2.3.3.
  22.  
  23. Any user can visit a ZClass declaration and change the ZClass permission 
  24. mappings for methods and other objects defined within the ZClass, possibly 
  25. allowing for unauthorized access within the Zope instance. 
  26.  
  27. *** Nessus solely relied on the version number of your server, so if 
  28. *** the hotfix has already been applied, this might be a false positive
  29.  
  30. Solution : Upgrade to Zope 2.3.3 or apply the hotfix available 
  31. at http://www.zope.org/Products/Zope/Hotfix_2001-05-01/security_alert
  32.  
  33. Risk factor : High";
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Checks Zope version";
  42.  
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com");
  49.  family["english"] = "CGI abuses";
  50.  script_family(english:family["english"]);
  51.  script_dependencie("find_service.nes", "http_version.nasl");
  52.  script_require_ports("Services/www", 80);
  53.  script_require_keys("www/zope");
  54.  exit(0);
  55. }
  56.  
  57. #
  58. # The script code starts here
  59. #
  60.  
  61. include("http_func.inc");
  62.  
  63.  
  64. port = get_http_port(default:80);
  65.  
  66. banner = get_http_banner(port:port);
  67.  
  68. if(banner)
  69. {
  70.   if(egrep(pattern:"Server: .*Zope 2\.((0\..*)|(1\..*)|(2\..*)|(3\.[0-2]))", 
  71.           string:banner))
  72.      security_hole(port);
  73. }
  74.